home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 22 / Cream of the Crop 22.iso / bbs / reef205.zip / SAMPLE.BAT < prev    next >
DOS Batch File  |  1996-05-27  |  432b  |  24 lines

  1. REM : example .bat file for standlone LEVIATHON'S REEF:
  2. @echo off
  3. cd\games\REEF
  4. REEF game 1
  5. cd\pb\node1
  6.  
  7. REM: you can pass variables as well:
  8. @echo off
  9. cd\games\REEF
  10. REEF game %1
  11. cd\pb\node%1
  12.  
  13. REM: if you use custom .CFG files ie: CONFIG1.CFG, CONFIG2.CFG do this:
  14. @echo off
  15. cd\games\REEF
  16. REEF game 1 custom
  17. cd\pb\node1
  18.  
  19. REM: put this in your nightly maintenance .bat file
  20. @echo off
  21. cd\games\REEF
  22. REEF maint
  23.  
  24.